(prompt "\n\n\n\nWhat Operation do you want to perform ?")
(help "By choosing \"Install ScanQuix\", you can install ScanQuix and the scanner driver(s) on your computer.\nWith the choice \"Remove Installation\", an existing installation of ScanQuix and the scanner drivers can be entirely removed from your System.")
(prompt "\n\n\n\nHow is your Scanner connected to your Amiga ?\n(SCSI or parallel port)")
(help "Please select the Interface, to which the Scanner is connected. There are two possibilities:\n1.) SCSI-Interface\n2.) The internal parallel port of the Amiga. In this case, you must use a special cable as described in the manual !")
(choices "SCSI" "Parallel Port")
(default 1)
)
)
(if scsi
(
(set devname
(askstring
(prompt "\nPlease enter the name of the SCSI-device for your scanner:")
(help "You can find the correct name of the \"device\" in the documentation of your SCSI interface card.\nPossible names could be \"scsi.device\", \"squirrelscsi.device\", etc...")
(default "scsi.device")
)
)
(set unitnr
(asknumber
(prompt "\nPlease enter the SCSI unit number of your scanner:")
(help "You have to type in the correct unit number for your SCSI-device so that the device can address your Scanner correctly.\nUsually, this is the SCSI-ID of the Scanner. For more information about the unit number, consult the documentation of your SCSI-Interface.")
(default 5)
)
)
(tooltype
(prompt "Installing device name and unit number")
(help "Modifying the tooltypes of the Epson scanner driver to the given values.")
(dest "DEVS:ScannerDrivers/EpsonGT")
(settooltype "DEVICE" devname)
(settooltype "UNIT" (cat unitnr))
(confirm)
)
)
( ; else parallel
(tooltype
(prompt "Defining interface as parallel")
(help "Modifying the tooltypes of the Epson scanner driver to use the parallel port.")
(dest "DEVS:ScannerDrivers/EpsonGT")
(settooltype "PARALLEL" "")
(confirm)
)
)
)
(user old_user)
)
( ; else uninstall
(if (askbool
(prompt "\n\n\n\nDo you really want to remove all scanner drivers ?\n\nAll settings will be lost !")
(help "You can reinstall your scanner drivers at any time, but you will loose the current settings !\n\nYou can remove ScanQuix by dragging its icon into the trahscan.")
(default 0)
)
(
; uninstall procedure
(run "delete DEVS:ScannerDrivers all"
(prompt "\n\n\nDeleting scanner drivers.")
(help "You can reinstall the scanner drivers at any time")
(confirm)
)
(delete "DEVS:ScannerDrivers.info"
(prompt "\n\n\nDeleting scanner drivers.")
(help "You can reinstall your scanner drivers at any time")